home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / net3d-0.08 / config.h < prev    next >
C/C++ Source or Header  |  1995-06-22  |  969b  |  37 lines

  1. /* config.h
  2.  *
  3.  * configuration options file
  4.  */
  5. #ifndef config_h
  6. #define config_h
  7.  
  8. #define DEBUG 0                /* Toggles debugging messages. */
  9.  
  10. #define SHADEDGROUND 1            /* Toggles the fake depth shading
  11.                      * on the ground. */
  12.  
  13. #define NETDEBUG 0            /* Toggles display of incoming and
  14.                      * outgoing network messages */
  15.  
  16. #define SEEDCHANCE 4            /* The higher SEEDCHANCE is, the
  17.                      * lower the probability of fragment
  18.                      * of a tree forming a new tree.  */
  19.  
  20. #define DISPLAYFPS 0            /* Toggles the display of frames
  21.                      * per second */
  22.  
  23. #define DISPLAYCACHEINFO 0        /* Toggles the display of data about
  24.                      * the sin and map caches. */
  25.  
  26. #define CPPPATH CPPCOMMAND        /* Full path to the c preprocessor
  27.                      * used on your system. This should be
  28.                      * found by Imake, but if not you will
  29.                      * have to set it by hand. */
  30.  
  31. #define USEINLINES 1            /* If you are using gcc, this toggles
  32.                      * the use of inline functions for
  33.                      * matrix multiplication */
  34.  
  35. #endif
  36.  
  37.